home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c4 / pro20 / cmuwmpbm.c < prev    next >
C/C++ Source or Header  |  1990-05-31  |  2KB  |  107 lines

  1. /* cmuwmtopbm.c - read a CMU window manager bitmap and produce a portable bitmap
  2. **
  3. ** Copyright (C) 1989 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "pbm.h"
  15. #include "cmuwm.h"
  16.  
  17. main( argc, argv )
  18. int argc;
  19. char *argv[];
  20.     {
  21.     FILE *ifd;
  22.     register bit *bitrow, *bP;
  23.     int rows, cols, padright, row, col;
  24.     short depth;
  25.     bit getbit();
  26.  
  27.     pm_progname = argv[0];
  28.  
  29.     if ( argc > 2 )
  30.     pm_usage( "[cmuwmfile]" );
  31.  
  32.     if ( argc == 2 )
  33.     ifd = pm_openr( argv[1] );
  34.     else
  35.     ifd = stdin;
  36.  
  37.     getinit( ifd, &cols, &rows, &depth, &padright );
  38.     if ( depth != 1 )
  39.     pm_error(
  40.         "CMU window manager file has depth of %d, must be 1",
  41.         (int) depth, 0,0,0,0 );
  42.  
  43.     pbm_writepbminit( stdout, cols, rows );
  44.     bitrow = pbm_allocrow( cols );
  45.  
  46.     for ( row = 0; row < rows; row++ )
  47.     {
  48.     /* Get data. */
  49.         for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  50.         *bP = getbit( ifd );
  51.     /* Discard line padding */
  52.         for ( col = 0; col < padright; col ++ )
  53.         (void) getbit( ifd );
  54.     pbm_writepbmrow( stdout, bitrow, cols );
  55.     }
  56.  
  57.     pm_close( ifd );
  58.  
  59.     exit( 0 );
  60.     }
  61.  
  62.  
  63. int item;
  64. int bitsperitem, bitshift;
  65.  
  66. getinit( file, colsP, rowsP, depthP, padrightP )
  67. FILE *file;
  68. int *colsP, *rowsP, *padrightP;
  69. short *depthP;
  70.     {
  71.     long magic;
  72.  
  73.     if ( pm_readbiglong( file, &magic ) == -1 )
  74.     pm_error( "premature EOF" );
  75.     if ( magic != CMUWM_MAGIC )
  76.     pm_error( "bad magic number in CMU window manager file", 0,0,0,0,0 );
  77.     if ( pm_readbiglong( file, colsP ) == -1 )
  78.     pm_error( "premature EOF" );
  79.     if ( pm_readbiglong( file, rowsP ) == -1 )
  80.     pm_error( "premature EOF" );
  81.     if ( pm_readbigshort( file, depthP ) == -1 )
  82.     pm_error( "premature EOF" );
  83.     *padrightP = ( ( *colsP + 7 ) / 8 ) * 8 - *colsP;
  84.  
  85.     bitsperitem = 0;
  86.     }
  87.  
  88. bit
  89. getbit( file )
  90. FILE *file;
  91.     {
  92.     bit b;
  93.  
  94.     if ( bitsperitem == 0 )
  95.     {
  96.     item = getc( file );
  97.     if ( item == EOF )
  98.         pm_error( "premature EOF", 0,0,0,0,0 );
  99.     bitsperitem = 8;
  100.     bitshift = 7;
  101.     }
  102.     b = ( ( item >> bitshift) & 1 ) ? PBM_WHITE : PBM_BLACK;
  103.     bitsperitem--;
  104.     bitshift--;
  105.     return b;
  106.     }
  107.